header {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    padding-top: 2px;
    padding-bottom: 2px;
    height: 50px;
    top: 0px;
    left: 0px;
    right: 0px;
}

.left-name {
    flex-grow: 1;
    flex-basis: 0;
    font-weight: 700;
    font-size: 30px;
    min-width: 200px;
    padding-left: 5px; 
    margin-right: 20px;
}

.middle-navbar {
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-weight: 700;
    width: 600px;
    min-width: 475px;
    padding-left: 10px;
}

.right-git {
    display: flex;
    justify-content: end;
    flex-grow: 1;
    flex-basis: 0;
    padding-right: 10px;
}

header a:hover {
    background-color: red;
}

header a {
    padding: 10px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: rgb(15, 15, 15);
    border-radius: 6px;
    outline: none;
    transition: 0.2s;
}